home *** CD-ROM | disk | FTP | other *** search
-
- /* $Id: TicObject.h,v 1.1.1.1 1993/03/18 03:36:25 davis Exp $ */
-
- #import "SubObject.h"
-
- @interface TicObject:SubObject
- {
- double doubleValue; /* A point on an axis */
- }
-
- /*
- * We override initFromString: because it doesn't make sense for a
- * TicObject to have a string value but no double value. It must
- * always have at least a double value -- the string value is optional.
- */
- - initFromString:(const char *)aString;
-
- - initFromString:(const char *)aString doubleValue:(double)aDouble;
-
- - setDoubleValue:(double)aDouble;
- - (double)doubleValue;
-
- @end
-